Summary
Here are a few useful snippets from today's session:
grep -R "some string" /some/path: recursively looks for "some string" inside all the files in thesome/pathdirectory;find /some/path -name *flag* -type f: recursively searches for regular files in the/some/pathdirectory, whose names include the wordflag;cat large_file | grep SSS: looks for theSSSstring in a large file, so you don't have to do this manually;find some/path <some criteria> | xargs grep SSS: look for theSSSstring in each file that matches some specified criteria.